home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 271_02 / wkdaynm.doc < prev   
Text File  |  1987-08-18  |  750b  |  41 lines

  1.  
  2.  
  3.        NAME
  4.                wkdayname -- return a pointer to name of day string
  5.  
  6.        SYNOPSIS
  7.                char *wkdayname(day);
  8.                int day;        day number 0-6
  9.  
  10.  
  11.  
  12.        DESCRIPTION
  13.        This function returns a character pointer to a text string
  14.        naming the day of the week indicated by the day parameter.
  15.        Day 0 is Sunday, and day 6 is Saturday.  Strings are null terminated
  16.        and may be used directly or copied to another string.
  17.  
  18.  
  19.        EXAMPLE
  20.  
  21.               printf("Today is %s", wkdayname(3));
  22.               /* output is :
  23.                    Today is Wednesday
  24.               */
  25.  
  26.  
  27.  
  28.  
  29.  
  30.  
  31.  
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39.  
  40.        This function is found in SMTCx.LIB for the Turbo-C Compiler.
  41.